/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  dev
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0 0 0)
    (0.52 0 0)
    (0.52 2.18 0)
    (0 2.18 0)
    (0 0 0.076)
    (0.52 0 0.076)
    (0.52 2.18 0.076)
    (0 2.18 0.076)
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (52 218 8) simpleGrading (1 1 1)
);

edges
(
);

patches
(
    wall bottom
    (
        (1 5 4 0)
    )
    wall top
    (
        (3 7 6 2)
    )
    wall frontWall
    (
        (0 4 7 3)

    )
    wall backWall
    (

        (2 6 5 1)
    )
    wall coldWall
    (
        (0 3 2 1)
    )
    wall hotWall
    (
        (4 5 6 7)
    )
);

mergePatchPairs
(
);

// ************************************************************************* //
